home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / tictactoe-1.2.1 / t3visual.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-22  |  514 b   |  23 lines

  1. #include "t3types.h"
  2. #ifndef __T3VISUAL__H__
  3. #define __T3VISUAL__H__
  4.  
  5. /*
  6.  * These functions carry out the display logic
  7.  * show_scores is generally used for debugging
  8.  *
  9.  * show_board displays the current board
  10.  *
  11.  * show_result displays who has won or lost
  12.  *
  13.  * this file, along with messages control how
  14.  * things are displayed.  To make a gui frontend
  15.  * only these two need to be changed.  the API
  16.  * remains the same
  17.  */
  18.  
  19. void show_scores();
  20. void show_board(); 
  21. void show_result(enum players result);
  22. #endif
  23.